*{
  font-family: sans-serif;
}

/*--------------------------
    BACKGROUND IMAGE
----------------------------*/

.parallax1, .parallax2, .parallax3, .parallax4, .parallax5 {
  position: relative;
  overflow: hidden;
  
}

.parallax1::before, .parallax2::before, .parallax3::before, .parallax4::before, .parallax5::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.664); /* changed to black with full opacity */
  z-index: 1;
  pointer-events: none;
}

.parallax2 {
  /* The image used */
  background-image: url('../img/refbg.jpg');
  background-size: cover;

  /* Full height */
  height: 100%; 
  min-height: 100vh;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax3 {
  /* The image used */
  background-image: url('../img/1.jpg');
  background-size: cover;

  /* Full height */
  height: 100%; 
  min-height: 100vh;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax4 {
  /* The image used */
  background-image: url('../img/4.jpg');
  background-size: cover;

  /* Full height */
  height: 100%; 
  min-height: 100vh;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax5 {
  /* The image used */
  background-image: url('../img/5.png');
  background-size: cover;

  /* Full height */
  height: 100%; 
  min-height: 100vh;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.parallax3 {
  /* The image used */
  background-image: url('../img/1.jpg');
  background-size: cover;

  /* Full height */
  height: 100%; 
  min-height: 100vh;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax4 {
  /* The image used */
  background-image: url('../img/4.jpg');
  background-size: cover;

  /* Full height */
  height: 100%; 
  min-height: 100vh;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax5 {
  /* The image used */
  background-image: url('../img/5.png');
  background-size: cover;

  /* Full height */
  height: 100%; 
  min-height: 100vh;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/*--------------------------
    TEXT STYLING
----------------------------*/
.textstyle {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 40px 50px;
  margin: 50px auto 70px auto;
  max-width: 900px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  color: #222;
  font-family: 'Georgia', serif;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .parallax-section {
    flex-direction: column !important;
    padding: 20px 0;
    min-height: 50vh !important;
  }
  .parallax-content {
    padding: 10px 20px !important;
    text-align: center !important;
  }
  .parallax-image {
    max-width: 80% !important;
    margin: 0 auto 20px auto !important;
    
  }
  .parallax-text {
    font-size: 1.8rem !important;
  }
  .parallax-textp {
    font-size: 1.2rem !important;
  }
  .textstyle {
    padding: 20px 30px !important;
    font-size: 1rem !important;
  }
  .textstyle h1 {
    font-size: 2rem !important;
  }
  .textstyle h3 {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 575.98px) {
  .parallax-image {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .parallax-text {
    font-size: 1.4rem !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .parallax-textp {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .textstyle {
    padding: 15px 20px !important;
    font-size: 0.9rem !important;
  }
  .textstyle h1 {
    font-size: 1.5rem !important;
  }
  .textstyle h3 {
    font-size: 1rem !important;
  }
}

.textstyle.animate-on-scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

.textstyle.left {
  transform: translateX(-150px) scale(0.8);
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.textstyle.left.animate-on-scroll-visible {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.textstyle.right {
  transform: translateX(150px) scale(0.8);
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.textstyle.right.animate-on-scroll-visible {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.textstyle h1 {
  margin-top: 20px;
  margin-bottom: 50px;
  color: #bfa14a;
  font-weight: 900;
  font-size: 3.5rem;
  text-shadow: 1px 1px 3px rgba(191, 161, 74, 0.7);
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
  border-bottom: 3px solid #bfa14a;
  padding-bottom: 12px;
}

.textstyle h3 {
  margin-top: 20px;
  margin-bottom: 25px;
  color: #8c7a3a;
  font-weight: 700;
  font-size: 2rem;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

.textstyle p {
  font-size: 1.3rem;
  color: #444;
  font-weight: 400;
  margin-bottom: 50px;
  line-height: 1.8;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
}

.textstyle ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 40px auto;
  padding-left: 20px;
}

.textstyle li {
  color: #555;
  list-style: none;
  font-weight: 500;
  text-align: justify;
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.textstyle ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #888;
  font-weight: 700;
  margin-right: 10px;
}

.content-container {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 25px 35px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-family: 'Outfit', sans-serif;
  color: #444;
  border: 1px solid #ddd;
}

.content-container h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #555;
  border-bottom: 2px solid #ccc;
  padding-bottom: 8px;
}

.content-container p {
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.1rem;
  color: #666;
}

/*--------------------------
    LEADERSHIP TEAM
----------------------------*/
.parallax-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-content {
  flex: 1;
  padding: 20px;
  color: white;
  z-index: 2;
}

.parallax-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  margin-left: 400px; /* shift image slightly towards center */
}

.parallax-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-right: 300px ;
  
  
}

.parallax-textp {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  text-align: justify;
  margin: 5px;
  margin-right: 300px ;
  
}

/* Animations */
.left {
  transform: translateX(-150px) translateY(30px) scale(0.8);
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.left.animate-on-scroll-visible {
  transform: translateX(0) translateY(0) scale(1);
  opacity: 1;
}

.right {
  transform: translateX(150px) translateY(30px) scale(0.8);
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.right.animate-on-scroll-visible {
  transform: translateX(0) translateY(0) scale(1);
  opacity: 1;
}

/* Parallax image and text animations */
.parallax-image.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.parallax-image.animate-on-scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax-text.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.parallax-text.animate-on-scroll-visible {
  opacity: 1;
  transform: translateY(0);
}


.parallax-textp.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.parallax-textp.animate-on-scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------
   BUTTON FOR FUTURE READY
----------------------------*/
#futureReadyBtn {
  background-color: #bfa14a;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  user-select: none;
}

#futureReadyBtn:hover {
  background-color: #a68f3f;
  transform: scale(1.05);
}

#futureReadyBtn:hover,
#futureReadyBtn:focus {
  background-color: #a68f3f;
  transform: scale(1.05);
  outline: none;
}

#futureReadyBtn:active {
  background-color: #8c7a33;
  transform: scale(0.95);
}

 
#futureReadyBtn:hover {
  background-color: #a68f3f;
  transform: scale(1.05);
}

 #futureReadyBtn:hover,
 #futureReadyBtn:focus {
   background-color: #a68f3f;
   transform: scale(1.05);
 }